home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Visual Basic 5.0 (2nd Edition) / Hardcore Visual Basic 5.0 - Second Edition (1997)(Microsoft Press).iso / Code / TRES.RC < prev    next >
Text File  |  1997-06-14  |  2KB  |  82 lines

  1. // TRES.RC - Resource script for Test Resources program
  2.  
  3. //$ Const ordAppBmp = 101
  4. #if defined(US)
  5. 101     BITMAP  "MANHEAD.BMP"
  6. #elif defined(SW)
  7. 101     BITMAP  "PIGHEAD.BMP"
  8. #else
  9. #error "No language"
  10. #endif
  11.  
  12. //$ Const ordAppIcon   = 301
  13. #if defined(US)
  14. 301     ICON    "FLGUSA.ICO"
  15. #elif defined(SW)
  16. 301     ICON    "FLGSWI.ICO"
  17. #endif
  18.  
  19. //$ Const ordAppCursor = 401
  20. #if defined(US)
  21. 401     CURSOR  "MANHAND.CUR"
  22. #elif defined(SW)
  23. 401     CURSOR  "PIGTAIL.CUR"
  24. #endif
  25.  
  26. //$ Const ordWavGrunt  = 501
  27. #if defined(US)
  28. 501     WAVE    "GRUNT.WAV"
  29. #elif defined(SW)
  30. 501     WAVE    "OINK.WAV"
  31. #endif
  32.  
  33. //$ Const ordTxtData   = 601
  34. 601     OURDATA
  35. BEGIN
  36. #if defined(US)
  37.        0x7550, 0x6572, 0x7220, 0x7761
  38.        0x6420, 0x7461, 0x2061
  39. #elif defined(SW)
  40.        0x7255, 0x7065, 0x7961, 0x6120
  41.        0x7277, 0x6965, 0x6120, 0x6174
  42.        0x6564, 0x2079
  43. #endif
  44. END
  45.  
  46. //$ Const ordFrmTitle  = 1001
  47. //$ Const ordMnuFile   = 1101
  48. //$ Const ordMnuGrunt  = 1102
  49. //$ Const ordMnuExit   = 1103
  50. //$ Const ordLstTitle  = 1201
  51. //$ Const ordLstWhat   = 1301
  52. //$ Const ordLstWhy    = 1302
  53. //$ Const ordLstWhere  = 1303
  54. //$ Const ordLstWho    = 1304
  55. //$ Const ordLstWhen   = 1305
  56. STRINGTABLE
  57. BEGIN
  58. #if defined(US)
  59.     1001    "Test Resources"
  60.     1101    "&File"
  61.     1102    "&Grunt"
  62.     1103    "E&xit"
  63.     1201    "Strings:"
  64.     1301    "What's the story?"
  65.     1302    "Why are we here?"
  66.     1303    "Where are they now?"
  67.     1304    "Who's got the ball?"
  68.     1305    "When do we eat?"
  69. #elif defined(SW)
  70.     1001    "Estay Esourcesrei"
  71.     1101    "&IleFey"
  72.     1102    "&UntGray"
  73.     1103    "ItE&xeigh"
  74.     1201    "Ingstray:"
  75.     1301    "At'swhay ethei orystay?"
  76.     1302    "Ywhay rahey ewey erehay?"
  77.     1303    "Erewhay rahey eythey ouney?"
  78.     1304    "Oosway otgay ethei allbay?"
  79.     1305    "Enwhey oodae eway teeay?"
  80. #endif
  81. END
  82.